home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DMAKE38B.ARJ / SYSINTF.H < prev    next >
C/C++ Source or Header  |  1992-01-23  |  420b  |  30 lines

  1. /*
  2. ** assorted bits of system interface
  3. */
  4.  
  5. #define STAT stat
  6. #define VOID_LCACHE(l,m)
  7. #define GETPID _psp
  8.  
  9. extern char * tempnam();
  10. extern char * getcwd();
  11.  
  12. /*
  13. ** standard C items
  14. */
  15.  
  16. /*
  17. ** DOS interface standard items
  18. */
  19. #define    chdir(p) _chdir(p)
  20.  
  21. /*
  22. ** make parameters
  23. */
  24. #ifdef _POSIX_NAME_MAX
  25. #undef _POSIX_NAME_MAX
  26. #endif
  27. #define _POSIX_NAME_MAX 12
  28. #define _POSIX_PATH_MAX 64
  29. #define    MAX_PATH_LEN    _POSIX_PATH_MAX
  30.